home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 34.zip / BS1 part 34 / Aztec C 5.0a disk 1.adf / include / graphics / regions.h < prev    next >
C/C++ Source or Header  |  1988-07-15  |  291b  |  17 lines

  1. #ifndef    GRAPHICS_REGIONS_H
  2. #define    GRAPHICS_REGIONS_H
  3. #ifndef    GRAPHICS_GFX_H
  4. #include    <graphics/gfx.h>
  5. #endif
  6. struct    RegionRectangle
  7. {
  8. struct    RegionRectangle    *Next,*Prev;
  9. struct    Rectangle    bounds;
  10. };
  11. struct    Region
  12. {
  13. struct    Rectangle    bounds;
  14. struct    RegionRectangle    *RegionRectangle;
  15. };
  16. #endif
  17.